home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 03 Pathfinding with Astar / 01 Matthews / ase / ase.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-06-30  |  491 b   |  34 lines

  1.  
  2. #ifndef _AFX_ASE_H_
  3. #define _AFX_ASE_H_
  4.  
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif
  8.  
  9. #ifndef __AFXWIN_H__
  10.     #error include 'stdafx.h' before including this file for PCH
  11. #endif
  12.  
  13. #include "resource.h"
  14.  
  15. class CAseApp : public CWinApp
  16. {
  17. public:
  18.     CAseApp();
  19.  
  20.     //{{AFX_VIRTUAL(CAseApp)
  21.     public:
  22.     virtual BOOL InitInstance();
  23.     //}}AFX_VIRTUAL
  24.  
  25.     //{{AFX_MSG(CAseApp)
  26.     afx_msg void OnAppAbout();
  27.     //}}AFX_MSG
  28.     DECLARE_MESSAGE_MAP()
  29. };
  30.  
  31. //{{AFX_INSERT_LOCATION}}
  32.  
  33. #endif
  34.